home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / makebin.com / BINDEMO1.PRG < prev    next >
Encoding:
Text File  |  1989-04-16  |  512 b   |  18 lines

  1. CLEAR
  2. ? 'Example database program to show how to load and run a Pascal EXE program'
  3. ?
  4. LOAD BINDEMO1.BIN
  5. BT = 'This is a message string directed from the database program'
  6. ?
  7. CALL BINDEMO1 WITH BT
  8. ?
  9. ? 'We are now back in the database program'
  10. ? BT
  11. ?
  12. BT = 'This is a new message string directed from the database program'
  13. ?
  14. CALL BINDEMO1 WITH BT
  15. ?
  16. ? 'We are now back in the database program again'
  17. ? BT
  18. ?